home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / skel / .tcsh.config < prev   
Text File  |  2005-10-28  |  2KB  |  74 lines

  1. ##
  2. ## TCSH Configuration
  3. ##
  4. ## The setting in this file influence the behaviour and configuration
  5. ## of the base tcsh scripts.
  6. ##
  7. ## 2005-09-27  --  Fabian Groffen (grobian@gentoo.org)
  8. ##   Added some options by popular demand of the users and made defaults
  9. ##   to disable all extras except CTRLD and SAFETY
  10. ##   Note: this file is no longer in use by default as of the ebuild 6.14-r1
  11. ## 2003-01-14  --  Alain Penders (alain@gentoo.org)
  12. ##   Initial version
  13. ##
  14.  
  15. #
  16. # Will the history be saved for the next session when the shell is closed?
  17. #
  18. # Value: set to enable saving the history, unset to disable.
  19. # (Default: disabled)
  20. #
  21. #setenv TCSH_SHELL_SAVEHISTORY 1
  22.  
  23. #
  24. # Auto-logout after a certain number of minutes?
  25. #
  26. # Value: unset to disable, set to the number of minutes to enable.
  27. # (Default: disabled)
  28. #
  29. #setenv TCSH_SHELL_AUTOLOGOUT 15
  30.  
  31. #
  32. # Default rm, mv, and cp to safe versions (ask before overwriting or
  33. # deleting a file)?  This is enabled by default for new users.
  34. #
  35. # Value: set to enable, unset to disable.  (Default: enabled)
  36. #
  37. setenv TCSH_SHELL_SAFETY 1
  38.  
  39. #
  40. # Add MSDOS/CPM command aliases (del, cls, md, rd, dir)?
  41. #
  42. # Value: set to enable, unset to disable.  (Default: disabled)
  43. #
  44. #setenv TCSH_SHELL_DOS 1
  45.  
  46. #
  47. # Add CD shortcut aliases?
  48. #
  49. # These include:
  50. #   .    -> pwd
  51. #   ..   -> cd ..
  52. #   ../  -> cd ../
  53. #   -    -> cd -
  54. #   /    -> cd /
  55. #
  56. # Value: set to enable, unset to disable.  (Default: disabled)
  57. #
  58. #setenv TCSH_SHELL_CDALIAS 1
  59.  
  60. #
  61. # Enable intelligent command line completion (by pressing TAB)?
  62. #
  63. # Value: set to enable, unset to disable.  (Default: disabled)
  64. #
  65. #setenv TCSH_SHELL_COMPLETION 1
  66.  
  67. #
  68. # Perform both completion and spelling correction of the command line?
  69. #
  70. # Value: set to enable, unset to disable.  (Default: disabled)
  71. #
  72. #setenv TCSH_SPELL_COMPLETE 1
  73.  
  74.